6070a7fd8a10b93cdf722e7a10f6737322a01192,portal-impl/src/com/liferay/portlet/bookmarks/social/BookmarksFolderActivityInterpreter.java,BookmarksFolderActivityInterpreter,getPath,#SocialActivity#ServiceContext#,40

Before Change


			SocialActivity activity, ServiceContext serviceContext)
		throws Exception {

		long folderId = activity.getClassPK();

		return addNoSuchEntryRedirect(
			"/bookmarks/find_folder?folderId=" + folderId,
			activity.getClassName(), folderId, serviceContext);
	}

	@Override

After Change


	protected String getPath(
		SocialActivity activity, ServiceContext serviceContext) {

		return "/bookmarks/find_folder?folderId=" + activity.getClassPK();
	}

	@Override